home *** CD-ROM | disk | FTP | other *** search
/ All for Cell Phones: Sony Ericsson / Sony-Ericsson 2004.iso / Java / HTetris / htetris.jar / tetris / GameTimerTask.class (.txt) < prev    next >
Encoding:
Java Class File  |  2002-07-19  |  711 b   |  17 lines

  1. package tetris;
  2.  
  3. import java.util.TimerTask;
  4. import javax.microedition.lcdui.Display;
  5.  
  6. class GameTimerTask extends TimerTask {
  7.    GameScreen scr;
  8.  
  9.    public GameTimerTask(GameScreen d) {
  10.       this.scr = d;
  11.    }
  12.  
  13.    public void run() {
  14.       Display.getDisplay(TetrisMIDlet.instance).callSerially(this.scr);
  15.    }
  16. }
  17.